home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-07-07 | 377 b | 21 lines | [TEXT/R*ch] |
- // Copyright © 1993,1994 Apple Computer, Inc. All rights reserved.
-
- // app constants
- constant kAppMaxWidth := 240 ;
- constant kAppMaxHeight := 336 ;
-
-
- // read in the book
-
- bookFilePath := HOME&"Help Book Source.f" ;
-
- // open resource fork for pictures
- ref := OpenResFileX(bookFilePath);
-
- // load in the book
- load(bookFilePath);
-
- // close the resource file
- CloseResFileX(ref) ;
-
-